.main {
    width: 1200px;
    margin: 0 auto;
}

header {
    position: absolute;
    width: 100%;
    height: 52px;
    /* 设置背景颜色为白色，且透明度为 33%，rgba 中的 a 表示透明度，取值范围是 0 - 1，0.33 即 33% */
    background-color: rgba(255, 255, 255, 0.33);
    /* 添加背景模糊效果，blur 函数中的数值 50px 表示模糊程度，可按需调整 */
    backdrop-filter: blur(50px);
    /* 如果需要元素内容能正常显示，可添加下面的属性来确保内容不被背景模糊影响 */
    -webkit-backdrop-filter: blur(50px); /* 兼容 Safari 浏览器 */
}

header .main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .main .left {
    height: 52px;
    display: flex;
    align-items: center;
}

header .main .left .logo img {
    width: 132px;
    height: 45px;
}

header .main .left .nav {
    margin-left: 54px;
}

header .main .left .nav ul {
    display: flex;
    align-items: center;
}

header .main .left .nav ul li {
    padding: 0 16px;
}

header .main .left .nav ul li a {
    font-weight: 700;
    color: #333333;
    font-size: 16px;
    font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
    font-weight: bold;
}

header .main .left .nav ul .active {
    position: relative;
}

header .main .left .nav ul .active a {
    color: #e82b2f;
}

header .main .left .nav ul .active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%);
    width: 23px;
    height: 2px;
    background: #e82b2f;
    border-radius: 1px;
}

header .main .right {
    display: flex;
    align-items: center;
}

header .main .right .s_seach {
    margin-right: 20px;
    width: 216px;
    height: 36px;
    background: rgba(255,255,255,0.31);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #FFFFFF;
}

header .main .right .s_seach input {
    margin-left: 20px;
    font-size: 14px;
    font-family: MicrosoftYaHei;
    color: #333333;
}

header .main .right .s_seach input::placeholder {
    font-size: 14px;
    font-family: MicrosoftYaHei;
    color: #333333;
}

header .main .right .s_seach img {
    margin-right: 20px;
    width: 16px;
    height: 16px;
}

header .main .right .anniu {
    width: 82px;
    height: 36px;
    background: #e82b2f;
    border-radius: 4px;
}

header .main .right .anniu a {
    display: block;
    text-align: center;
    line-height: 36px;
    font-size: 14px;
    font-family: MicrosoftYaHei;
    color: #ffffff;
}

.banner {
    background: url(../images/banner.jpg);
    width: 100%;
    height: 466px;
    border-radius: 0px 0px 0px 0px;
    background-size: 100% 100%;
    padding-top: 466px;
}

.banner .seach {
    background: url(../images/seach_bg.png);
    width: 1200px;
    height: 275px;
    background-size: 100% 100%;
    margin: -150px auto;
}

.banner .seach .title {
    position: relative;
    padding-top: 28px;
    margin-left: 32px;
    font-size: 36px;
    font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
    font-weight: bold;
    color: #333333;
}

.banner .seach .title .lf{
    position: absolute;
    width: 3px;
    height: 35px;
    background: linear-gradient(180deg, #1B50FF 0%, #B31BFF 49%, #1B50FF 100%);
    border-radius: 110px 110px 110px 110px;
    left: -32px;
    top: 35px;
}


.banner .seach .title span{
    color: #1b50ff;
}

.banner .seach .box {
    margin-top: 15px;
    padding-left: 32px;
}

.banner .seach .box .bt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 32px;
}

.banner .seach .box .bt .nf {
    position: relative;
}

.banner .seach .box .bt .nf .xz {
    width: 500px;
    height: 62px;
    background: #ECF3FF;
    border-radius: 8px;
    display: flex;
    align-items: center;

}

.banner .seach .box .bt .nf .xz p {
    margin-left: 24px;
    font-size: 20px;
    font-family: MicrosoftYaHei;
    color: #333333;
    line-height: 57px;
}

.banner .seach .box .bt .nf .ppx {
    z-index: 99;
    position: absolute;
    top: 65px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 200px;
    background: #ffffff;
    padding: 0 16px;
    border-radius: 10px;
    box-shadow: 0 0 10px #b1b1b1;
    overflow-y: scroll;
    display: none;
}

.banner .seach .box .bt .nf .ppx ul li {
    display: flex;
    align-items: center;
    height: 40px;
    border-bottom: 1px solid #e9e6e6;
    color: #333;
    font-size: 20px;
}

.banner .seach .box .bt .nf .xz::after {
    content: "";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/seach_xia.png);
    width: 33px;
    height: 33px;
    background-size: 100% 100%;
    transition: all 0.5s;
}

.banner .seach .box .bt .nf .xz.open::after {
    content: "";
    position: absolute;
    right: 24px;
    top: 30%;
    transform: translateY(-50%);
    background: url(../images/seach_xia.png);
    width: 33px;
    height: 33px;
    background-size: 100% 100%;
    transform: rotate(180deg);
}

.banner .seach .box .bt .dq {
    position: relative;
}

.banner .seach .box .bt .dq .xz {
    width: 500px;
    height: 62px;
    background: #ECF3FF;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.banner .seach .box .bt .dq .xz p {
    margin-left: 24px;
    font-size: 20px;
    font-family: MicrosoftYaHei;
    color: #333333;
    line-height: 57px;
}

.banner .seach .box .bt .dq .ppx1 {
    z-index: 99;
    position: absolute;
    top: 65px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 200px;
    background: #ffffff;
    padding: 0 16px;
    border-radius: 10px;
    box-shadow: 0 0 10px #b1b1b1;
    overflow-y: scroll;
    display: none;
}

.banner .seach .box .bt .dq .ppx1 ul li {
    display: flex;
    align-items: center;
    height: 40px;
    border-bottom: 1px solid #e9e6e6;
    color: #333;
    font-size: 20px;
}

.banner .seach .box .bt .dq .xz::after {
    content: "";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/seach_xia.png);
    width: 33px;
    height: 33px;
    background-size: 100% 100%;
    transition: all 0.5s;
}

.banner .seach .box .bt .dq .xz.open::after {
    content: "";
    position: absolute;
    right: 24px;
    top: 30%;
    transform: translateY(-50%);
    background: url(../images/seach_xia.png);
    width: 33px;
    height: 33px;
    background-size: 100% 100%;
    transform: rotate(180deg);
}

.banner .seach .box .bx {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 32px;
}

.banner .seach .box .bx .zwb {
    position: relative;
}

.banner .seach .box .bx .zwb .xz {
    width: 500px;
    height: 62px;
    background: #ECF3FF;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.banner .seach .box .bx .zwb .xz p {
    margin-left: 24px;
    font-size: 20px;
    font-family: MicrosoftYaHei;
    color: #333333;
    line-height: 57px;
}

.banner .seach .box .bx .zwb .ppx2 {
    z-index: 99;
    position: absolute;
    top: 65px;
    left: 50%;
    transform: translateX(-50%);
    width: 437px;
    height: 200px;
    background: #ffffff;
    padding: 0 16px;
    border-radius: 10px;
    box-shadow: 0 0 10px #b1b1b1;
    overflow-y: scroll;
    display: none;
}

.banner .seach .box .bx .zwb .ppx2 ul li {
    display: flex;
    align-items: center;
    height: 40px;
    border-bottom: 1px solid #e9e6e6;
    color: #333;
    font-size: 20px;
}

.banner .seach .box .bx .zwb .xz::after {
    content: "";
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/seach_xia.png);
    width: 33px;
    height: 33px;
    background-size: 100% 100%;
    transition: all 0.5s;
}

.banner .seach .box .bx .zwb .xz.open::after {
    content: "";
    position: absolute;
    right: 24px;
    top: 30%;
    transform: translateY(-50%);
    background: url(../images/seach_xia.png);
    width: 33px;
    height: 33px;
    background-size: 100% 100%;
    transform: rotate(180deg);
}

.banner .seach .box .bx .anniu {
    width: 500px;
    height: 62px;
    background: #6291ff;
    border-radius: 31px;
}

.banner .seach .box .bx .anniu a {
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-family: MicrosoftYaHei;
    color: #ffffff;
    font-weight: 700;
}

.banner .seach .box .bx .anniu a img {
    margin-right: 9px;
    width: 26px;
    height: 26px;
}

.di_zw .main .title {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
    font-weight: bold;
    color: #333333;
}


.di_zw .main{
    margin-top: 180px;
}

.di_zw .main .title span {
    color: #e82b2f;
}

.di_zw .main ul {
    margin-top: 40px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.di_zw .main ul li {
    width: 200px;
    height: 127px;
    background: #ffffff;
    border: 1px solid #dddddd;
    border-left: none;
    border-top: none;
}

.di_zw .main ul li a {
    display: block;
    text-align: center;
    font-size: 32px;
    font-family: MicrosoftYaHei;
    color: #333333;
    line-height: 127px;
}

.di_zw .main ul li:hover {
    width: 200px;
    height: 127px;
    background: #e82b2f;
    border: 1px solid #dddddd;
}

.di_zw .main ul li:hover a {
    color: #ffffff;
}

.di_zw .main ul li:nth-child(1) {
    border-top: 1px solid #dddddd;
    border-left: 1px solid #dddddd;
}

.di_zw .main ul li:nth-child(2) {
    border-top: 1px solid #dddddd;
}

.di_zw .main ul li:nth-child(3) {
    border-top: 1px solid #dddddd;
}

.di_zw .main ul li:nth-child(4) {
    border-top: 1px solid #dddddd;
}

.di_zw .main ul li:nth-child(5) {
    border-top: 1px solid #dddddd;
}

.di_zw .main ul li:nth-child(6) {
    border-top: 1px solid #dddddd;
}

.di_zw .main ul li:nth-child(7) {
    border-left: 1px solid #dddddd;
}

.di_zw .main ul li:nth-child(13) {
    border-left: 1px solid #dddddd;
}

.di_zw .main ul li:nth-child(19) {
    border-left: 1px solid #dddddd;
}

.di_zw .main ul li:nth-child(25) {
    border-left: 1px solid #dddddd;
}

.di_zw .main ul li:nth-child(31) {
    border-left: 1px solid #dddddd;
}

.bold {
    margin-top: 66px;
    width: 100%;
    height: 2px;
    background: #e7e7e7;
}

.pai_m .main .title {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
    font-weight: bold;
    color: #333333;
}

.pai_m .main .title span {
    color: #e82b2f;
}

.pai_m .main .content .sxs {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pai_m .main .content .sxs .xsx {
    margin-top: 40px;
    width: 386px;
    height: 481px;
    background: #ffffff;
}

.pai_m .main .content .sxs .xsx .pic {
    background: url(../images/pai_h_pic1.png);
    width: 100%;
    height: 81px;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
}

.pai_m .main .content .sxs .xsx .pic p {
    font-size: 20px;
    font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
    font-weight: bold;
    color: #ffffff;
}

.pai_m .main .content .sxs .xsx .pic1 {
    background: url(../images/pai_h_pic2.png);
    width: 100%;
    height: 81px;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
}

.pai_m .main .content .sxs .xsx .pic1 p {
    font-size: 20px;
    font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
    font-weight: bold;
    color: #ffffff;
}

.pai_m .main .content .sxs .xsx .pic2 {
    background: url(../images/pai_h_pic3.png);
    width: 100%;
    height: 81px;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
}

.pai_m .main .content .sxs .xsx .pic2 p {
    font-size: 20px;
    font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
    font-weight: bold;
    color: #ffffff;
}

.pai_m .main .content .sxs .xsx ul {
    padding-left: 11px;
    padding-right: 13px;
    border: 1px solid #dddddd;
    border-radius: 0 0 8px 8px;
    border-top: none;
}

.pai_m .main .content .sxs .xsx ul li {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pai_m .main .content .sxs .xsx ul li .left_t {
    display: flex;
    align-items: center;
}

.pai_m .main .content .sxs .xsx ul li .left_t .ppc img {
    width: 18px;
    height: 18px;
}

.pai_m .main .content .sxs .xsx ul li .left_t p {
    text-align: center;
    width: 18px;
    height: 18px;
    line-height: 18px;
    font-size: 16px;
    font-family: MicrosoftYaHei;
    color: #999999;
}

.pai_m .main .content .sxs .xsx ul li .left_t a {
    display: block;
    margin-left: 12px;
    font-size: 16px;
    font-family: MicrosoftYaHei;
    color: #333333;
}

.pai_m .main .content .sxs .xsx ul li .right_t {
    font-size: 16px;
    font-family: MicrosoftYaHei;
    color: #e82b2f;
}

.pai_m .main .content .sxs .xsx ul li .right_t1 {
    font-size: 16px;
    font-family: MicrosoftYaHei;
    color: #666666;
}

.pai_m .main .content .sxs .xsx ul li:hover .left_t a {
    color: #e82b2f;
}

.bao_k {
    padding-bottom: 68px;
    margin-top: 50px;
}

.bao_k .main .title {
    font-size: 36px;
    font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
    font-weight: bold;
    color: #333333;
}

.bao_k .main .content {
    margin-top: 37px;
}

.bao_k .main .content .ss {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}

.bao_k .main .content .ss .x1 {
    width: 387px;
    height: 467px;
    background: #ffffff;
    box-shadow: 0px 7px 10px 0px rgba(208, 208, 208, 0.5), 0px -2px 4px 0px rgba(0, 0, 0, 0.07);
    border-radius: 8px;
    padding-top: 21px;
    padding-left: 26px;
    padding-right: 25px;
}

.bao_k .main .content .ss .x1 .pic {
    position: relative;
}

.bao_k .main .content .ss .x1 .pic img {
    width: 336px;
    height: 188px;
    border-radius: 5px;
}

.bao_k .main .content .ss .x1 .pic p {
    position: absolute;
    left: 14px;
    bottom: 3px;
    font-size: 14px;
    font-family: MicrosoftYaHei;
    color: #ffffff;
}

.bao_k .main .content .ss .x1 .tit {
    margin-top: 16px;
    font-size: 20px;
    font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
    font-weight: bold;
    color: #333333;
    line-height: 34px;
}

.bao_k .main .content .ss .x1 .xtx {
    width: 336px;
    height: 73px;
    background: #fafafa;
    padding: 13px 12px 0;
    margin-top: 29px;
    font-size: 14px;
    font-family: MicrosoftYaHei;
    color: #666666;
    line-height: 24px;
}

.bao_k .main .content .ss .x1 .xia {
    margin-top: 23px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bao_k .main .content .ss .x1 .xia .x_l a {
    display: flex;
    align-items: center;
    font-size: 11px;
    font-family: MicrosoftYaHei;
    color: #999999;
}

.bao_k .main .content .ss .x1 .xia .x_l a img {
    margin-right: 7px;
    width: 26px;
    height: 26px;
}

.bao_k .main .content .ss .x1 .xia .x_r {
    display: flex;
    align-items: center;
    font-size: 11px;
    font-family: MicrosoftYaHei;
    color: #999999;
}

.bao_k .main .content .ss .x1 .xia .x_r img {
    width: 13px;
    height: 13px;
}

.bao_k .main .content .ss .x1:hover .tit {
    color: #e82b2f;
}

.bao_k .main .content .ss .x3 {
    width: 387px;
    height: 467px;
    background: #ffffff;
    border-radius: 8px;
    padding-top: 21px;
    padding-left: 26px;
    padding-right: 25px;
}

.bao_k .main .content .ss .x2 {
    position: absolute;
    right: -10px;
    top: -3px;
    background: url(../images/bao_k_bg.png);
    width: 404px;
    height: 478px;
    background-size: 100% 100%;
    padding: 0 24px;
}

.bao_k .main .content .ss .x2 .tit {
    display: flex;
}

.bao_k .main .content .ss .x2 .tit p {
    margin-top: 21px;
    font-size: 24px;
    font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
    font-weight: bold;
    color: #333333;
}

.bao_k .main .content .ss .x2 .tit span {
    margin-left: 40px;
    display: block;
    margin-top: 33px;
    font-size: 14px;
    font-family: MicrosoftYaHei;
    color: #999999;
}

.bao_k .main .content .ss .x2 .tt ul {
    padding-top: 6px;
}

.bao_k .main .content .ss .x2 .tt ul li {
    margin-top: 24px;
    display: flex;
    align-items: center;
}

.bao_k .main .content .ss .x2 .tt ul li p {
    width: 52px;
    height: 55px;
    font-size: 42px;
    text-align: center;
    font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
    font-weight: bold;
    color: #dfdfdf;
    line-height: 52px;
}

.bao_k .main .content .ss .x2 .tt ul li .zi {
    margin-left: 20px;
    width: 284px;
    /*height: 52px;*/
    font-size: 16px;
    font-family: MicrosoftYaHei;
    color: #333333;
    line-height: 23px;
}

.bao_k .main .content .ss .x2 .anniu {
    margin: 24px auto 0;
    width: 245px;
    height: 49px;
    background: #fafafa;
    border-radius: 4px;
}

.bao_k .main .content .ss .x2 .anniu a {
    display: block;
    text-align: center;
    line-height: 49px;
    font-size: 16px;
    font-family: MicrosoftYaHei;
    color: #666666;
}
